home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / SNNSV32.ZIP / SNNSv3.2 / xgui / sources / ui_result.ph < prev    next >
Encoding:
Text File  |  1994-04-25  |  1.9 KB  |  78 lines

  1. /*****************************************************************************
  2.   FILE           : ui_result.ph
  3.   SHORTNAME      : result.ph
  4.   SNNS VERSION   : 3.2
  5.  
  6.   PURPOSE        :
  7.   NOTES          :
  8.  
  9.   AUTHOR         : Michael Vogt
  10.   DATE           : 20. 5. 1992
  11.  
  12.   CHANGED BY     :
  13.   IDENTIFICATION : @(#)ui_result.ph    1.7 3/2/94
  14.   SCCS VERSION   : 1.7
  15.   LAST CHANGE    : 3/2/94
  16.  
  17.              Copyright (c) 1990-1994  SNNS Group, IPVR, Univ. Stuttgart, FRG
  18.              
  19. ******************************************************************************/
  20.  
  21.  
  22. #ifndef _UI_RESULT_DEFINED_
  23. #define _UI_RESULT_DEFINED_
  24.  
  25.  
  26. /* begin global definition section */
  27.  
  28.  
  29. #define    UI_RESULT_INPUT_YES    0
  30. #define UI_RESULT_INPUT_NO    1
  31. #define    UI_RESULT_OUTPUT_YES    0
  32. #define UI_RESULT_OUTPUT_NO    1
  33. #define UI_RESULT_MODE_CREATE    0
  34. #define UI_RESULT_MODE_APPEND    1
  35.  
  36.  
  37. void ui_popupResult (Widget);
  38.  
  39.  
  40. Bool            ui_ResultIsCreated = FALSE;
  41.  
  42.  
  43. /* end global definition section */
  44.  
  45.  
  46. /* begin private definition section */
  47.  
  48.  
  49. static void ui_performRadioButtons (Widget [], int, int);
  50. static void ui_result_Setinput (Widget, int, caddr_t);
  51. static void ui_result_Setoutput (Widget, int, caddr_t);
  52. static void ui_result_Setmode (Widget, int, caddr_t);
  53. static void ui_result_lastcall (Widget, int, caddr_t);
  54. static void ui_result_default (Widget, int, caddr_t);
  55. static void ui_resultDone (Widget, int, caddr_t);
  56. static void ui_resultCancel (Widget, int, caddr_t);
  57. static Widget ui_xCreateResultPanel (Widget);
  58.  
  59.  
  60. static int      ui_result_output_state;
  61. static int      ui_result_no_start_pat;
  62. static int      ui_result_no_end_pat;
  63. static int      ui_result_input_state;
  64. static int      ui_result_mode_state;
  65. static Widget   ui_resultInputRButtons[2];
  66. static Widget   ui_resultOutputRButtons[2];
  67. static Widget   ui_resultModeRButtons[2];
  68. static Widget   ui_resultStartPattern;
  69. static Widget   ui_resultEndPattern;
  70.  
  71.  
  72. /* end private definition section */
  73.  
  74.  
  75. #endif /* _UI_RESULT_DEFINED_ */
  76.  
  77.  
  78.